home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 076-100 / scopedisk87 / runback4 / runback.src / aztec.c next >
Encoding:
C/C++ Source or Header  |  1995-03-19  |  199 b   |  15 lines

  1. /* HasASpace(s):    Return 1 if there is a space in string s.
  2.  *            Return 0 otherwise.
  3. */
  4.  
  5. HasASpace(s)
  6. char *s;
  7. {
  8.     char *temp=s;
  9.     while (*temp) {
  10.         if (*(temp++) == ' ')
  11.             return(1);
  12.     }
  13.     return(0);
  14. }
  15.